home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / pupworld.swf / scripts / __Packages / Heroes / ConfusingDistraction.as < prev    next >
Encoding:
Text File  |  2011-06-09  |  243 b   |  13 lines

  1. class Heroes.ConfusingDistraction extends Heroes.Distraction
  2. {
  3.    function ConfusingDistraction()
  4.    {
  5.       super();
  6.    }
  7.    function distractPlayer()
  8.    {
  9.       super.distractPlayer();
  10.       this._parent.player.confuse();
  11.    }
  12. }
  13.